home *** CD-ROM | disk | FTP | other *** search
- package com.ibm.ivb.sguides;
-
- import java.awt.event.ActionEvent;
- import java.awt.event.ActionListener;
-
- class SmartGuide$CommandHandler implements ActionListener {
- // $FF: synthetic field
- private final SmartGuide this$0;
-
- public void actionPerformed(ActionEvent var1) {
- String var2 = var1.getActionCommand();
- if (var2.equals("BackCommand")) {
- this.this$0.executeMove(false);
- } else if (var2.equals("NextCommand")) {
- this.this$0.executeMove(true);
- } else if (var2.equals("FinishCommand")) {
- this.this$0.executeFinish();
- } else if (var2.equals("CancelCommand")) {
- this.this$0.executeCancel();
- } else {
- if (var2.equals("HelpCommand")) {
- this.this$0.executeHelp();
- }
-
- }
- }
-
- SmartGuide$CommandHandler(SmartGuide var1) {
- this.this$0 = var1;
- this.this$0 = var1;
- }
- }
-